synchronization$81104$ - vertaling naar duits
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

synchronization$81104$ - vertaling naar duits

TERM IN COMPUTER SCIENCE
Tcp global synchronization; Global synchronization

synchronization      
n. Synchronisierung, zeitliches Zusammenfallen; Zusammenspiel
brain wave         
  • Tonic]] firing pattern of single neuron showing rhythmic spiking activity
  • 200px
  • Simulation of [[Kuramoto model]] showing neural synchronization and oscillations in the mean field
  •  doi = 10.1007/s004220000160 }}</ref> As the gain A is increased the network starts to oscillate at 3Hz.
  • Hindmarsh–Rose neuron]] showing typical [[bursting]] behavior: a fast rhythm generated by individual spikes and a slower rhythm generated by the bursts.
  • Generalized 3 Hz spike and wave discharges reflecting [[seizure]] activity
  • Handwriting of a person affected by [[Parkinson's disease]] showing rhythmic tremor activity in the strokes
1953 NOVEL BY POUL ANDERSON
Brainwave; Brainwaves; Brain waves; Induced activity; Ongoing brain activity; Neuronal oscillations; Neurodynamics; Neural Field Theory; Neural synchronization; Spontaneous activity; Neuronal synchronization; Neural oscillations; Cortical oscillation; Cortical oscillations; Brain wave; Brain rhythm
Geistesblitz, plötzliche Idee; (Medizin) elektrischer Impuls der im Gehirn entsteht
Network Time Protocol         
  • chronyc}}, showing sources and activity information. [[Terminal window]] under [[Arch Linux]]
  • NTP was designed by [[David L. Mills]].
  • Round-trip delay time δ
  • The NTP management protocol utility ntpq being used to query the state of a stratum 2 server.
  • Schriever AFB (Colorado)]] is a stratum 0 source for NTP
STANDARD PROTOCOL FOR SYNCHRONIZING TIME ACROSS DEVICES
Network time protocol; Simple Network Time Protocol; SNTP; NTP server; Port 123; RFC 1305; Ntp4; NTP clock strata; NTP clock stratum; Stratum 0; Stratum 1; Stratum 2; Stratum 3; Digital Time Synchronization Service; Network Time Security; NTP (protocol)
(Internet) Protokoll das die Uhr des Computers mit den Atomuhren des Internets abstimmt

Definitie

synchronous
['s??kr?n?s]
¦ adjective
1. existing or occurring at the same time.
2. of or denoting a satellite which revolves in its orbit in exactly the same time as the primary body rotates on its axis.
Derivatives
synchronously adverb
Origin
C17: from late L. synchronus (from Gk sunkhronos, from sun- 'together' + khronos 'time') + -ous.

Wikipedia

TCP global synchronization

TCP global synchronization in computer networks can happen to TCP/IP flows during periods of congestion because each sender will reduce their transmission rate at the same time when packet loss occurs.

Routers on the Internet normally have packet queues, to allow them to hold packets when the network is busy, rather than discarding them.

Because routers have limited resources, the size of these queues is also limited. The simplest technique to limit queue size is known as tail drop. The queue is allowed to fill to its maximum size, and then any new packets are simply discarded until there is space in the queue again.

This causes problems when used on TCP/IP routers handling multiple TCP streams, especially when bursty traffic is present. While the network is stable, the queue is constantly full, and there are no problems except that the full queue results in high latency. However, the introduction of a sudden burst of traffic may cause large numbers of established, steady streams to lose packets simultaneously.

TCP has automatic recovery from dropped packets, which it interprets as congestion on the network (which is usually correct). The sender reduces its sending rate for a certain amount of time and then tries to find out if the network is no longer congested by increasing the rate again subject to a ramp-up. This is known as the slow start algorithm.

Almost all the senders will use the same time delay before increasing their rates. When these delays expire at the same time, all the senders will send additional packets and the router queue will again overflow, more packets will be dropped, the senders will all back off for a fixed delay... ad infinitum; compare with the thundering herd problem.

This pattern of each sender decreasing and increasing transmission rates at the same time as other senders is referred to as "global synchronization" and leads to inefficient use of bandwidth, due to the large numbers of dropped packets, which must be retransmitted, and because the senders have a reduced sending rate, compared to the stable state, while they are backed-off, following each loss.

This problem has been the subject of much research. The consensus appears to be that the tail drop algorithm is the leading cause of the problem, and other queue size management algorithms such as Random Early Detection (RED) and Weighted RED will reduce the likelihood of global synchronization, as well as keeping queue sizes down in the face of heavy load and bursty traffic.